home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day08 / btmain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-08  |  1.4 KB  |  43 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef BTMainH
  3. #define BTMainH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Buttons.hpp>
  10. #include <vcl\ExtCtrls.hpp>
  11.  
  12. //---------------------------------------------------------------------------
  13. class TMainForm : public TForm
  14. {
  15. __published:    // IDE-managed Components 
  16.     TButton *ShowButtons;
  17.     TBitBtn *ShowBitBtns;
  18.     TPanel *Panel1;
  19.     TLabel *Label;
  20.     TPanel *Panel2;
  21.     TSpeedButton *BtnsSpeedBtn;
  22.     TSpeedButton *BitBtnsSpeedBtn;
  23.     TSpeedButton *DrawMode;
  24.     TSpeedButton *PaintMode;
  25.     TSpeedButton *EraseMode;
  26.     TLabel *Label1;
  27.     TLabel *Label2;
  28.     TBevel *Bevel1;
  29.     TCheckBox *AllowAllUpBox;
  30.     TLabel *ModeLabel;
  31.     void __fastcall ShowButtonsClick(TObject *Sender);
  32.     
  33.     void __fastcall AllowAllUpBoxClick(TObject *Sender);
  34.     void __fastcall DrawModeClick(TObject *Sender);
  35. private:        // User declarations
  36. public:         // User declarations
  37.     virtual __fastcall TMainForm(TComponent* Owner);
  38. };
  39. //---------------------------------------------------------------------------
  40. extern TMainForm *MainForm;
  41. //---------------------------------------------------------------------------
  42. #endif
  43.